260dada5f7af0fb208aa890a95371cebb6910600,Mage.Sets/src/mage/sets/riseoftheeldrazi/Vendetta.java,VendettaEffect,apply,#Game#Ability#,96
Before Change
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
Permanent target = game.getPermanent(source.getFirstTarget());
if (player != null && target != null) {
player.loseLife(target.getToughness().getValue(), game);
return true;
After Change
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
Permanent target = (Permanent) game.getLastKnownInformation(source.getFirstTarget(), Constants.Zone.BATTLEFIELD);
if (player != null && target != null) {
player.loseLife(target.getToughness().getValue(), game);
return true;